Thanks, for downloading this.

Okay, here's what's going on.

- 1) Open the BMPEngine and a the top of the file you will see a CON section and in there is a constand called pin group.
THe documentation should explain what to do. Make sure you are using the right VGA pin group. The pin group default is
pins 16 - 23 which should be compatible with any demoboard or parallax setup.

- 2) Open the COMEngine and again at the top of the file there is a CON block with the RX and TX pins. Make sure they match 
your setup. A serial terminal is needed to give the WAV player commands.

- 3) Open the DACEngine and follow the same proceedure of setting your left and right audio pins.

- 4) Open the FATEngine and do the same thing again of setting up your pins for the SD card. Note that if the WAV player
cannot mount the SD card when it starts up it will crash and will need to be restarted.

- 5) Open the RTCEngine and make sure you have your DS1307 RTC on the right pins also. You don't need a RTC for this demo,
however the File system driver will put invalid last acess time stamps on your files when it closes them.

- 6) Okay now your ready to runt the demo. Load the WAVPlayer code and run it. Make sure your pins are correct and a SD card
is inserted. If the SD card is not inserted when the demo starts it will crash and must be restarted.

- 7) Type "mount 0" to mount the 0th partition of the SD card and then you can play files from it. SD cards that lack a MRB
will not be mounted and will fail this process. Just use another SD card if this is happening to you.

The commands for the termianl are as follows.

"Mount <partitionNumber>" = This mounts a partition for use by the file system.
"Unmount" = This unloads the file system. You don't need to use this.

"echo <stuff>" = Repeats back to you the stuff you gave it.
"clear" = Clears the screen.

"ls" - List all files is the current directory and their attributes.
"cd <directoryName>" - Changes the working directory. UUse the ".." entry to go up one level.

"play <wavfile>" - Plays the wav file passed to it. This starts the visualization.
"stop" - Stops the wav file being played.

"pause" - Pauses playing the wav file.
"unpause" - unpauses the playing wav file.

"rate <sampleRate>" - changes the sample rate to whatever you want. Don't go over 88200, may crash DAC driver.
"volume <leftChannel> <rightChannel>" - Changes the volume of the left and right channel.   